home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / MPW IIGS Interfaces / AIIGSIncludes / E16.TextEdit < prev    next >
Encoding:
Text File  |  1992-03-04  |  3.2 KB  |  108 lines  |  [TEXT/MPS ]

  1. ; File:  E16.TextEdit
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. teAlreadyStarted EQU $2201
  9. teNotStarted EQU $2202
  10. teInvalidHandle EQU $2203
  11. teInvalidVerb EQU $2204
  12. teInvalidFlag EQU $2205
  13. teInvalidPCount EQU $2206
  14. teInvalidRect EQU $2207
  15. teBufferOverflow EQU $2208
  16. teInvalidLine EQU $2209
  17. teInvalidCall EQU $220A
  18. NullVerb EQU $0000
  19. PStringVerb EQU $0001
  20. CStringVerb EQU $0002
  21. C1InputVerb EQU $0003
  22. C1OutputVerb EQU $0004
  23. HandleVerb EQU $0005
  24. PointerVerb EQU $0006
  25. NewPStringVerb EQU $0007
  26. fEqualLineSpacing EQU $8000
  27. fShowInvisibles EQU $4000
  28. teInvalidDescriptor EQU $2204
  29. teInvalidParameter EQU $220B
  30. teInvalidTextBox2 EQU $220C
  31. teNeedsTools EQU $220D
  32. teEqualLineSpacing EQU $8000
  33. teShowInvisibles EQU $4000
  34. leftJust EQU $0000
  35. rightJust EQU $FFFF
  36. centerJust EQU $0001
  37. fullJust EQU $0002
  38. noTabs EQU $0000
  39. stdTabs EQU $0001  ; Tabs every tabTerminator pixels
  40. absTabs EQU $0002  ; Tabs at absolute location specified by theTabs array
  41. fCtlInvis EQU $0080
  42. fRecordDirty EQU $0040
  43. teLeftTab EQU $0000
  44. teCenterTab EQU $0001
  45. teRightTab EQU $0002
  46. teDecimalTab EQU $0003
  47. fNotControl EQU $80000000  ; TextEdit record is not a control
  48. fSingleFormat EQU $40000000  ; Only one ruler is allowed for record
  49. fSingleStyle EQU $20000000  ; Only one style is allowed for record
  50. fNoWordWrap EQU $10000000  ; No word wrap is performed
  51. fNoScroll EQU $08000000  ; The text cannot scroll
  52. fReadOnly EQU $04000000  ; The text cannot be edited
  53. fSmartCutPaste EQU $02000000  ; Record supports intelligent cut and paste
  54. fTabSwitch EQU $01000000  ; Tab key switches user to next TextEdit record on the screen
  55. fDrawBounds EQU $00800000  ; TextEdit draw a box around text
  56. fColorHilight EQU $00400000  ; Use color table for highlighting
  57. fGrowRuler EQU $00200000  ; Adjust right margin whenever window size changes
  58. fDisableSelection EQU $00100000  ; User cannot select or edit text
  59. fDrawInactiveSelection EQU $00080000  ; TextEdit displays a box around an inactive selection
  60. teCtlColorIsPtr EQU $0000
  61. teCtlColorIsHandle EQU $0004
  62. teCtlColorIsResource EQU $0008
  63. teCtlStyleIsPtr EQU $0000
  64. teCtlStyleIsHandle EQU $0001
  65. teCtlStyleIsResource EQU $0002
  66. teRefIsPtr EQU $0000
  67. teRefIsHandle EQU $0001
  68. teRefIsResource EQU $0002
  69. teRefIsNewHandle EQU $0003
  70. teDataIsPString EQU $0000
  71. teDataIsCString EQU $0001
  72. teDataIsC1Input EQU $0002
  73. teDataIsC1Output EQU $0003
  74. teDataIsTextBox2 EQU $0004
  75. teDataIsTextBlock EQU $0005
  76. teTextIsPtr EQU $0000
  77. teTextIsHandle EQU $0008
  78. teTextIsResource EQU $0010
  79. teTextIsNewHandle EQU $0018
  80. fLeaveError EQU $0000  ; Leave the last error code intact
  81. fClearError EQU $FFFF  ; Clear the last error code
  82. teInvis EQU $4000
  83. tePartialLines EQU $8000
  84. teDontDraw EQU $4000
  85. teUseFont EQU $0020
  86. teUseSize EQU $0010
  87. teUseForeColor EQU $0008
  88. teUseBackColor EQU $0004
  89. teUseUserData EQU $0002
  90. teUseAttributes EQU $0001
  91. teReplaceFont EQU $0040
  92. teReplaceSize EQU $0020
  93. teReplaceForeColor EQU $0010
  94. teReplaceBackColor EQU $0008
  95. teReplaceUserField EQU $0004
  96. teReplaceAttributes EQU $0002
  97. teSwitchAttributes EQU $0001
  98. doEraseRect EQU $0001
  99. doEraseBuffer EQU $0002
  100. doRectChanged EQU $0003
  101. doKeyStroke EQU $0004
  102. teScrollAbsTop EQU $0000
  103. teScrollAbsCenter EQU $0001
  104. teScrollLineTop EQU $0002
  105. teScrollLineCenter EQU $0003
  106. teScrollAbsUnit EQU $0004
  107. teScrollRelUnit EQU $0005
  108.